home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / Libraries / SAT 2.3b4 / Demo ƒ / SAT Invaders demo ƒ / gameGlobals.p < prev    next >
Text File  |  1994-11-02  |  888b  |  43 lines

  1. {=================================================}
  2. {========= GameGlobals, globals for SATInvaders ==========}
  3. {=================================================}
  4.  
  5. { Example file for Ingemars Sprite Animation Toolkit. }
  6. { © Ingemar Ragnemalm 1992 }
  7. { See doc files for legal terms for using this code. }
  8.  
  9. { This file defines the resource numbers and global variables for SATInvaders.}
  10.  
  11. unit GameGlobals;
  12.  
  13. interface
  14. {$IFC UNDEFINED THINK_PASCAL}
  15.     uses
  16.         Types, QuickDraw, Menus;
  17. {$ENDC}
  18.  
  19.     const
  20. {    Resource numbers}
  21.  
  22.         fileMenuRes = 1004;    { Race menu }
  23.         aboutAlrt = 1000;        { About box }
  24.         gameWindRes = 262;        { game window }
  25.  
  26. { File menu }
  27.         run = 1;
  28.         sound = 3;
  29.         fastAnimation = 4;
  30.         quit = 6;
  31.  
  32.     var
  33. {    Menu handles.  There isn't any apple menu here, since TransSkel will}
  34. {    be told to handle it itself.}
  35.  
  36.         fileMenu: MenuHandle;
  37.  
  38. {Level number.}
  39.         level: longint;
  40.  
  41. implementation
  42.  
  43. end.